1   package com.iluwatar;
2   
3   /**
4    * 
5    * Melee strategy.
6    *
7    */
8   public class MeleeStrategy implements DragonSlayingStrategy {
9   
10  	@Override
11  	public void execute() {
12  		System.out.println("With your Excalibur you severe the dragon's head!");
13  	}
14  
15  }